home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 21
/
Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso
/
Aminet
/
comm
/
mail
/
YAMscripts.lha
/
Unread.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
OS/2 REXX Batch file
|
1996-12-17
|
316 b
|
13 lines
/* This script will mark the current message unread and update the index
The script needs at least YAM 1.3.3 */
options results
call addlib('rexxsupport.library',0,-30)
address 'YAM'
GetMailInfo File
fname=result
if rc=0 & exists(fname) then do
address command 'filenote <>nil:' fname 'U'
MailUpdate
end
exit